home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 119
/
(Vol 119) Nov 09 2010.iso
/
Games
/
crusade_of_cuisine.swf
/
scripts
/
frame_8
/
DoAction.as
Wrap
Text File
|
2010-11-09
|
1KB
|
45 lines
function checkSelectButton()
{
mc2.mv_select.btn_lina.onRelease = function()
{
nellySelected = false;
gotoAndStop("stage_1");
play();
};
mc2.mv_select.btn_lina.onRollOver = function()
{
greenbar.gotoAndPlay("greenbar_uncover");
lina_text.gotoAndPlay("lina_text_uncover");
mc2.stop();
};
mc2.mv_select.btn_lina.onRollOut = function()
{
greenbar.gotoAndPlay("greenbar_cover");
lina_text.gotoAndPlay("lina_text_cover");
mc2.play();
};
mc2.mv_select.btn_nelly.onRelease = function()
{
gotoAndStop("stage_1");
play();
};
mc2.mv_select.btn_nelly.onRollOver = function()
{
redbar.gotoAndPlay("redbar_uncover");
nelly_text.gotoAndPlay("nelly_text_uncover");
mc2.stop();
};
mc2.mv_select.btn_nelly.onRollOut = function()
{
redbar.gotoAndPlay("redbar_cover");
nelly_text.gotoAndPlay("nelly_text_cover");
mc2.play();
};
}
stop();
var nellySelected = true;
mc2.onEnterFrame = function()
{
checkSelectButton();
};